--- title: "Hello R Markdown" author: "Frida Gomam" date: 2020-12-01T21:13:14-05:00 categories: ["R"] tags: ["R Markdown", "plot", "regression"] image: /assets/images/01-splash.jpg layout: post subtitle: Hello World, Hello Blog ---

R Markdown

This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com.

You can embed an R code chunk like this:

Download suisse6.html

Including Plots

You can also embed plots. See Figure 1 for example:

par(mar = c(0, 1, 0, 1))
pie(
  c(280, 60, 20),
  c('Sky', 'Sunny side of pyramid', 'Shady side of pyramid'),
  col = c('#0292D8', '#F7EA39', '#C4B632'),
  init.angle = -50, border = NA
)
A fancy pie chart.

Figure 1: A fancy pie chart.